Jekyll 실행 오류

Posted by ChaelinJ on December 29, 2021

Jekyll 실행 오류

2. Jekyll & Ruby 적용 (윈도우)에서 최신 버전(3.1.0)으로 Ruby를 다운했더니 오류 발생

  • 오류 1번: Could not find gem ‘jekyll-paginate (~> 1.1.0)’ in locally installed gems. (Bundler::GemNotFound)
    • 해결 방법: Run bundle install to install missing gems.

      > bundle install
      
  • 오류 2번: cannot load such file – webrick (LoadError)

    기존 ruby 버전에서 포함되었던 gem이 제외됐기 때문!

    • 해결 방법

      > bundle add webrick
      

참고 사이트